home *** CD-ROM | disk | FTP | other *** search
/ CD Actual Thematic 7: Programming / CDAT7.iso / demos / VisualAge for Java 2.0 Entry / setup / data1.cab / ide-e / IDE / cache / XGMVDQ (.txt) < prev    next >
Encoding:
Java Class File  |  1998-09-16  |  706 b   |  21 lines

  1. package java.util;
  2.  
  3. public class MissingResourceException extends RuntimeException {
  4.    private String className;
  5.    private String key;
  6.  
  7.    public MissingResourceException(String s, String className, String key) {
  8.       super(s);
  9.       this.className = className;
  10.       this.key = key;
  11.    }
  12.  
  13.    public String getClassName() {
  14.       return this.className;
  15.    }
  16.  
  17.    public String getKey() {
  18.       return this.key;
  19.    }
  20. }
  21.